Q: difference between break and continue?
break:
1. It is a keyword
2. It is used in switch case and in all the looping statements
3. break will completely stop the loop OR ends the case statement
4. It must be the last line in the block otherwise it throws "Unreachable code"


continue:
1. It is a keyword
2. It is used in all the looping statements only.
3. Continue will stop/skip the particular iteration and continue with remaining iterations
4. It must be the last line in the block otherwise it throws "Unreachable code"


